home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / extras / programm / mcode_01 / source / basics / getchar2.s < prev    next >
Text File  |  1995-04-27  |  458b  |  14 lines

  1. * Program     : Read a character in from the keyboard without echo to screen
  2. * Author    : Stephen McNabb
  3. * Creation date : 15th February 1995
  4. * Last update    : 15th February 1995
  5. * Parameters    : None
  6. * Output    : Charcters scan code and ASCII code in d0
  7. *          Low-order byte of d0 - ASCII code
  8. *          Upper word of d0     - scan code
  9.  
  10. start:    move.w    #7,-(sp)    /use Crawcin() function
  11.     trap    #1        /use gemdos
  12. end:    addq.l    #2,sp        /tidy up stack
  13.  
  14. *** End of file ***